home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Headers / eointerface / EOQualifiedAssociation.h < prev    next >
Encoding:
Text File  |  1994-09-07  |  936 b   |  29 lines

  1. // EOQualifiedAssociation
  2. // Enterprise Objects Framework
  3. // Copyright 1993 NeXT Computer, Inc.
  4. // All Rights Reserved
  5.  
  6. // This class implements associations between EOControllers.  Often several
  7. // elements in the UI are linked via a master-detail relationship.
  8. // EOQualifiedAssociations are used to establish these links.  In addition
  9. // to the normal EOAssociationNotification messages, master controllers 
  10. // propagate 4 additional messages to the detail controllers.  The
  11. // destination of an EOQualifiedAssociation will receive -fetch,
  12. // -saveToObjects, -saveToDataSource, and -redisplay whenever the master
  13. // controller receives these messages.
  14.  
  15. #import "EOAssociation.h"
  16.  
  17. @class EOController;
  18.  
  19. @interface EOQualifiedAssociation: EOAssociation
  20. {
  21.     id _currentMasterValue;
  22.     id _currentMasterEO;
  23. }
  24.  
  25. - initWithController:(EOController *)aController 
  26.     key: (NSString *)aKey destination:(EOController *)dController;
  27.  
  28. @end
  29.